GtkIconView
GtkIconViewForeachFunc
gtk_icon_view_new
+gtk_icon_view_new_with_area
gtk_icon_view_new_with_model
gtk_icon_view_set_model
gtk_icon_view_get_model
gtk_icon_view_get_visible_range
gtk_icon_view_item_activated
gtk_icon_view_new
+gtk_icon_view_new_with_area
gtk_icon_view_new_with_model
gtk_icon_view_path_is_selected
gtk_icon_view_scroll_to_path
return g_object_new (GTK_TYPE_ICON_VIEW, NULL);
}
+/**
+ * gtk_icon_view_new_with_area:
+ * @area: the #GtkCellArea to use to layout cells
+ *
+ * Creates a new #GtkIconView widget using the
+ * specified @area to layout cells inside the icons.
+ *
+ * Return value: A newly created #GtkIconView widget
+ *
+ * Since: 3.0
+ **/
+GtkWidget *
+gtk_icon_view_new_with_area (GtkCellArea *area)
+{
+ return g_object_new (GTK_TYPE_ICON_VIEW, "cell-area", area, NULL);
+}
+
/**
* gtk_icon_view_new_with_model:
* @model: The model.
#include <gtk/gtkcontainer.h>
#include <gtk/gtktreemodel.h>
#include <gtk/gtkcellrenderer.h>
+#include <gtk/gtkcellarea.h>
#include <gtk/gtkselection.h>
#include <gtk/gtktooltip.h>
GType gtk_icon_view_get_type (void) G_GNUC_CONST;
GtkWidget * gtk_icon_view_new (void);
+GtkWidget * gtk_icon_view_new_with_area (GtkCellArea *area);
GtkWidget * gtk_icon_view_new_with_model (GtkTreeModel *model);
void gtk_icon_view_set_model (GtkIconView *icon_view,